:root {
  --White: #ffffff;
  --Black: rgb(26, 26, 26);
  --theme: #a13e57;
  --themeAlt: #ac20a3;
}

/*------------------globals---------------------*/
html,
body {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  background-color: var(--Black);
  color: var(--White);
  margin: 0;
  line-height: 1.35;
}


@media screen and (max-width: 1500px) {

  html,
  body {
    font-size: 15px;
  }
}

@media screen and (max-width: 1200px) {

  html,
  body {
    font-size: 12.5px;
  }
}


@media screen and (max-width: 1000px) {

  html,
  body {
    font-size: 10px;
  }
}

a {
  color: var(--White);
  text-decoration: none;
}

b {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 900;
}

i {
  font-family: 'Fira Sans';
  font-style: italic;
  font-weight: 400;
}

input {
  width: 30vw;
  border: 2px solid var(--themeAlt);
  border-radius: 4px;
  padding: 12px 20px;
  margin: 8px 0;
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 400;
  box-sizing: border-box;
}

input[type=button],
input[type=submit],
input[type=reset] {
  background-color: var(--themeAlt);
  border: none;
  color: white;
  padding: 16px 32px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
  width: 20%;
}

input[type=radio] {
  width: auto;
}

b {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 900;
  color: var(--themeAlt);
}

.button {
  background-color: var(--themeAlt);
  /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.25rem;
}

.whiteBG {
  background-color: var(--White);
}

.themeBG {
  /* background-color: var(--theme); */
  background-color: var(--themeAlt);
}

.nav-banner {
  width: 100%;
  height: 10vw;
  background-repeat: repeat-x;
  margin: auto;
  background-position: center;
}

@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 5000% 0;
  }
}

#animate-area {
  width: 1920;
  height: 8vw;
  background-position: 0px 0px;
  background-repeat: repeat-x;
  background-image: url("../imgs/banner.jpg");
  background-size: auto 100%;
  animation: animatedBackground 6460s linear infinite;
}

.own-center {
  margin: auto;
  margin-left: 15%;
  margin-right: 15%;
}

.own-logo {
  width: 326px;
  padding-top: 1em;
  padding-bottom: 1em;
}

.paddingTB {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.paddingLR {
  padding-right: 0.85rem;
  padding-left: 0.85rem;
}

.own-flex {
  display: flex;
  justify-content: space-between;
}

.nav-item {
  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  margin-top: 0.5rem;
  /* margin-bottom: 2rem; */
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  border-bottom: 3px solid var(--Black);
}

.nav-item-active{
  border-bottom: 3px solid var(--themeAlt);
}

.nav-item:hover {
  border-bottom: 3px solid var(--themeAlt);
}



.own-bigDL {
  font-size: 2rem;
  font-family: 'Fira Sans';
  font-style: italic;
  font-weight: 700;
  color: var(--themeAlt);
}

.own-quote {
  font-family: 'Fira Sans';
  font-style: italic;
  font-weight: 200;
  font-size: 0.85rem;
  line-height: 1.35;
}

.border-top {
  border-top: 2px solid var(--themeAlt);
  margin-top: 1rem;
  padding-top: 1rem;
}

.my-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.forderer-img {
  width: 300px;
  background-color: white;
  object-fit: contain;
  height: 300px;
  /* height: auto; */
  padding: 0.75rem;
}

.start-title {

  font-family: 'Fira Sans';
  font-style: normal;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--themeAlt);
  padding: 2rem 0 0rem 0;
  /* cursor: pointer; */
}



#start-top-block {
  display: flex;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--themeAlt);
}

#startBlockRechts,
#startBlockLinks {

  font-size: 0.885rem;
  padding: 0.5rem;
  line-height: 1.4;
  /* height: 600px; */
  overflow: hidden;
  text-overflow: ellipsis;
  width: 50%;
}

.start-content {
  column-count: 2;
  column-gap: 1.5rem;
  font-size: 0.785rem;
  line-height: 1.4;
  font-weight: 400;
  color: white;
  margin: 0;
}

@media screen and (max-width: 1000px) {
  .start-content {
    column-count: 1;
  }
}

.mySlides {
  display: none;
  width: 100%;
  height: auto;



  justify-content: center;
  align-items: center;
  flex-direction: column;
}


.mySlides img {
  margin: auto;
  width: 80%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}

.mySlides p {
  background-color: var(--themeAlt);
  width: 80%;
}

.start-gallery {

  width: 80%;
  height: 70vmin;
  position: relative;
  padding-bottom: 3rem;
  padding-top: 3rem;
  margin-bottom: 6rem;
  margin: 0 auto;
}

#navBar {
  position: sticky;
  top: 0;
  background-color: rgb(26, 26, 26);
  border-bottom: #ac20a3 2px solid;
  z-index: 30;
  margin: auto;
  padding-left: 15%;
  padding-right: 15%;
}

#ssArrow {
  color: white;
  user-select: none;
  transition: color 0.15s;
}

#ssArrow:hover {
  color: var(--themeAlt);
}

.img-quote {
  box-sizing: border-box;
  padding: 1rem;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
}


.presseItem{
  justify-content: space-between;
  display: flex;
  padding: 1rem 0 1rem 0;
  border-top: #ac20a3 1px solid;
}

.presseImg{
  width: 100%;
}

.presseTitle{
  font-size: 1.0rem;
  font-weight: 400;
  font-family: 'Fira Sans';
  font-style: normal;
  color: var(--themeAlt);
  padding: 1rem 0 0.5rem 0;
}

.presseText{
  font-size: 0.785rem;
  font-weight: 400;
  font-family: 'Fira Sans';
  font-style: normal;
  padding: 0.5rem 0 0.5rem 0;
}

.modalPresse{
  width: 100%;
  height: 100%;
  margin: auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.751);
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* added for news 2 10 2024 */
.modal {
  position: fixed; /* Change to fixed to cover the entire viewport */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Dark background */
  display: none; /* Hidden by default, shown on click */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensures it's above other content */
}

.modal-content {
  max-width: 80%;
  max-height: 80%;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#caption {
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 18px;
}

  /* Individual item styling */
  .flex-item {
    width: 24%; /* Default width for larger screens */
    text-align: center; /* Center text */
}

/* Responsive adjustments */
@media screen and (max-width: 1000px) {
    .flex-item {
        width: 49%; /* Set width to 49% for smaller screens */
    }
}